home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Haight-Ashbury in the Sixties
/
Haight-Ashbury in the Sixties (1996)(Rockument)(Disc 1 of 2)[Mac-PC].iso
/
mac
/
MAIN
/
TUNEIN
/
TURNON
/
TURNON.DIR
/
00006_Script_6
< prev
next >
Wrap
Text File
|
1995-05-28
|
2KB
|
55 lines
on startmovie
cursor [552,553]
global AutoPlayMode
global gPlaylistMasterList
global gMovieCount -- tracks the number of the current movie during playlist playback
global gMainMovie -- store name and path to main movie for returning from last movie in sequence
set AutoPlayMode = "ON"
If AutoPlayMode = "ON" then
set the puppet of sprite 40 = true
set the castnum of sprite 40 = 542
updatestage
else
set the puppet of sprite 40 = false
set the castnum of sprite 40 = 539
updatestage
end if
set the visibility of sprite 40 = false
set the visibility of sprite 41 = false
set the visibility of sprite 42 = false
set the visibility of sprite 43 = false
set the visibility of sprite 44 = false
set the visibility of sprite 45 = false
set the visibility of sprite 46 = false
set the visibility of sprite 47 = false
end startmovie
-----
-- J. Collins - boy you guys sure mucked this up! I had to fix it to be compatible with Tune In. In the
-- process I also was able to eliminate 80 percent of the old code! This little bitty handler is all you really needed.
on playCompleteShow
global gPlaylistMasterList, x, y, autoPlayMode, rolledShow, gMainMovie, completeShow
global gMovieCount
put "@/" & the moviename into gMainMovie
set gPlaylistMasterList = []
set gMovieCount = 1
set rolledShow = false
set searchShow = false
set completeShow = true
-- generate a playlist from the list of TURN ON movies in the "filename master list" field
put (the number of items in field "filename master list") into x
repeat with i = 1 to x
append gPlaylistMasterList, item i of field "filename master list"
end repeat
put getAt (gPlaylistMasterList, 1) into nextMovie
go to movie getAt (gPlaylistMasterList, 1)
end playCompleteShow